home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue54 / Persist / FEditPerson.dfm < prev    next >
Encoding:
Text File  |  2000-01-09  |  3.7 KB  |  170 lines

  1. object FormEditPerson: TFormEditPerson
  2.   Left = 444
  3.   Top = 117
  4.   Width = 463
  5.   Height = 388
  6.   Caption = 'FormEditPerson'
  7.   Color = clBtnFace
  8.   Font.Charset = DEFAULT_CHARSET
  9.   Font.Color = clWindowText
  10.   Font.Height = -11
  11.   Font.Name = 'MS Sans Serif'
  12.   Font.Style = []
  13.   OldCreateOrder = False
  14.   OnCreate = FormCreate
  15.   OnDestroy = FormDestroy
  16.   OnShow = FormShow
  17.   PixelsPerInch = 96
  18.   TextHeight = 13
  19.   object GroupBox1: TGroupBox
  20.     Left = 4
  21.     Top = 0
  22.     Width = 448
  23.     Height = 85
  24.     Anchors = [akLeft, akTop, akRight]
  25.     Caption = ' Name details '
  26.     TabOrder = 0
  27.     object Label1: TLabel
  28.       Left = 16
  29.       Top = 28
  30.       Width = 49
  31.       Height = 13
  32.       Caption = '&Last name'
  33.       FocusControl = eLastName
  34.     end
  35.     object Label2: TLabel
  36.       Left = 16
  37.       Top = 56
  38.       Width = 48
  39.       Height = 13
  40.       Caption = '&First name'
  41.       FocusControl = eFirstName
  42.     end
  43.     object Label3: TLabel
  44.       Left = 216
  45.       Top = 28
  46.       Width = 29
  47.       Height = 13
  48.       Caption = '&Initials'
  49.       FocusControl = eInitials
  50.     end
  51.     object Label4: TLabel
  52.       Left = 216
  53.       Top = 56
  54.       Width = 20
  55.       Height = 13
  56.       Caption = '&Title'
  57.       FocusControl = GroupBox1
  58.     end
  59.     object eLastName: TEdit
  60.       Left = 84
  61.       Top = 24
  62.       Width = 121
  63.       Height = 21
  64.       TabOrder = 0
  65.       Text = 'eLastName'
  66.       OnChange = eLastNameChange
  67.     end
  68.     object eFirstName: TEdit
  69.       Left = 84
  70.       Top = 52
  71.       Width = 121
  72.       Height = 21
  73.       TabOrder = 1
  74.       Text = 'eFirstName'
  75.       OnChange = eLastNameChange
  76.     end
  77.     object eInitials: TEdit
  78.       Left = 284
  79.       Top = 24
  80.       Width = 121
  81.       Height = 21
  82.       TabOrder = 2
  83.       Text = 'eInitials'
  84.       OnChange = eLastNameChange
  85.     end
  86.     object cbTitle: TComboBox
  87.       Left = 284
  88.       Top = 52
  89.       Width = 121
  90.       Height = 21
  91.       Style = csDropDownList
  92.       ItemHeight = 13
  93.       TabOrder = 3
  94.       OnChange = eLastNameChange
  95.       Items.Strings = (
  96.         ''
  97.         'Mr'
  98.         'Mrs'
  99.         'Miss'
  100.         'Ms'
  101.         'Dr'
  102.         'Rev'
  103.         'Prof')
  104.     end
  105.   end
  106.   object GroupBox2: TGroupBox
  107.     Left = 4
  108.     Top = 88
  109.     Width = 229
  110.     Height = 181
  111.     Caption = ' Phone, Fax, EMail  && Web Addresses '
  112.     TabOrder = 1
  113.     object LVEAddress: TtiListView
  114.       Left = 8
  115.       Top = 21
  116.       Width = 213
  117.       Height = 152
  118.       Anchors = [akLeft, akTop, akRight, akBottom]
  119.       ViewStyle = vsReport
  120.       RowSelect = True
  121.       OnEdit = LVEAddressEdit
  122.       OnNew = LVEAddressNew
  123.       OnDelete = LVEAddressDelete
  124.       OnFilterData = LVEAddressFilterData
  125.     end
  126.   end
  127.   object GroupBox3: TGroupBox
  128.     Left = 236
  129.     Top = 88
  130.     Width = 216
  131.     Height = 182
  132.     Anchors = [akLeft, akTop, akRight]
  133.     Caption = 'Postal && Street Addresses '
  134.     TabOrder = 2
  135.     object LVAddress: TtiListView
  136.       Left = 8
  137.       Top = 20
  138.       Width = 200
  139.       Height = 154
  140.       Anchors = [akLeft, akTop, akRight, akBottom]
  141.       ViewStyle = vsReport
  142.       RowSelect = True
  143.       OnEdit = LVAddressEdit
  144.       OnNew = LVAddressNew
  145.       OnDelete = LVAddressDelete
  146.       OnFilterData = LVEAddressFilterData
  147.     end
  148.   end
  149.   object GroupBox4: TGroupBox
  150.     Left = 4
  151.     Top = 272
  152.     Width = 448
  153.     Height = 86
  154.     Anchors = [akLeft, akTop, akRight, akBottom]
  155.     Caption = ' Notes '
  156.     TabOrder = 3
  157.     object mNotes: TMemo
  158.       Left = 8
  159.       Top = 16
  160.       Width = 432
  161.       Height = 65
  162.       Anchors = [akLeft, akTop, akRight, akBottom]
  163.       Lines.Strings = (
  164.         'mNotes')
  165.       TabOrder = 0
  166.       OnChange = eLastNameChange
  167.     end
  168.   end
  169. end
  170.